Disclaimer:

Data Source: NY Times

US Totals for Cases,Deaths by Date

STATESDAILY %>% filter(new_cases >0) %>% ggplot() + 
  geom_col(aes(x=date,y=new_cases)) +
      labs(title="US Total Daily Cases by Date") +
     theme(axis.text.x = element_text(angle = 45)) 

STATESDAILY %>% filter(new_deaths >0)%>% ggplot() + geom_col(aes(x=date,y=new_deaths)) +
      labs(title="US Total Daily Deaths by Date") +
   theme(axis.text.x = element_text(angle = 45))

STATESDAILY %>% filter(new_cases >0) %>% ggplot() + geom_col(aes(x=date,y=death_rate)) +
      labs(title="US Death Rate by Date") +
   theme(axis.text.x = element_text(angle = 45))

Accumulated Daily Totals for Cases,Deaths by Date

Accumulated Cases and Deaths by State and Date

Accumulated Daily Deaths and Cases Totals for Ohio